/* =========================================================
   STANDOUT — self-hosted fonts for the static tool pages
   ---------------------------------------------------------
   The SPA already self-hosts these via @fontsource (see
   client/src/main.tsx) to avoid the fonts.googleapis.com round-trip.
   The static tool pages historically pulled the same fonts from the
   Google CDN, which privacy browsers / shields (e.g. Brave blocking
   fonts.gstatic.com) drop — leaving the page on Georgia/system
   fallbacks. Serving the woff2 ourselves makes the brand type render
   for everyone, with no third-party request. Family names + weights
   mirror @fontsource so tokens.css resolves them unchanged.
   ========================================================= */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url(/preview/assets/fonts/inter-latin-400-normal.woff2) format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-display: swap;
  font-weight: 500;
  src: url(/preview/assets/fonts/inter-latin-500-normal.woff2) format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-display: swap;
  font-weight: 600;
  src: url(/preview/assets/fonts/inter-latin-600-normal.woff2) format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-display: swap;
  font-weight: 700;
  src: url(/preview/assets/fonts/inter-latin-700-normal.woff2) format('woff2');
}
@font-face {
  font-family: 'Instrument Serif';
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url(/preview/assets/fonts/instrument-serif-latin-400-normal.woff2) format('woff2');
}
@font-face {
  font-family: 'Instrument Serif';
  font-style: italic;
  font-display: swap;
  font-weight: 400;
  src: url(/preview/assets/fonts/instrument-serif-latin-400-italic.woff2) format('woff2');
}
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url(/preview/assets/fonts/jetbrains-mono-latin-400-normal.woff2) format('woff2');
}
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-display: swap;
  font-weight: 500;
  src: url(/preview/assets/fonts/jetbrains-mono-latin-500-normal.woff2) format('woff2');
}
