/* Global font override to use Circe across the app */

/* NOTE: Place your licensed Circe webfont files in /public/webfonts/circe/
   Recommended files: Circe-Regular.woff2/.woff, Circe-Bold.woff2/.woff
   You can add more weights/styles as needed following the same pattern. */

/*
@font-face {
  font-family: 'Circe';
  src: url('/webfonts/circe/Circe-Regular.woff2') format('woff2'),
       url('/webfonts/circe/Circe-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

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

html, body, button, input, select, textarea {
  font-family: 'Circe', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}


