/* Custom Font Declarations */

/* Commuters Sans Regular */
@font-face {
    font-family: 'Commuters Sans';
    src: url('../fonts/CommutersSansRegular/font.woff2') format('woff2'),
         url('../fonts/CommutersSansRegular/font.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap; /* Better performance */
}

/* Commuters Sans Bold */
@font-face {
    font-family: 'Commuters Sans';
    src: url('../fonts/CommutersSansBold/font.woff2') format('woff2'),
         url('../fonts/CommutersSansBold/font.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Commuters Sans SemiBold */
  
@font-face {
    font-family: 'Commuters Sans';
    font-weight: 600;
    src: url('../fonts/CommutersSansSemiBold/font.woff2') format('woff2'),
         url('../fonts/CommutersSansSemiBold/font.woff') format('woff');
    font-style: normal;
    font-display: swap;
}  

/* Usage in CSS */
body {
    font-family: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
