/* Local font definitions */

/* Example of how to add a local font:

@font-face {
  font-family: 'CustomFont';
  src: url('./CustomFont-Regular.woff2') format('woff2'),
       url('./CustomFont-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'CustomFont';
  src: url('./CustomFont-Bold.woff2') format('woff2'),
       url('./CustomFont-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

*/

/* To use local fonts, first download the font files (.woff2, .woff, etc.)
   Then place them in this /public/fonts/ directory
   Then uncomment and modify the @font-face declarations above
   Finally, add the font to the theme in src/styles/GlobalStyles.ts */ 