/* bundled app fonts, self-hosted from fontsource (offline-safe, no external
   requests). variable families ship one woff2 covering the full weight axis;
   space mono ships discrete 400/700. font-display: swap so the spa shell never
   blocks on font load. DM Mono lives in its own dm-mono.css (the original
   default). the font ids here match FONTS in src/lib/fonts.ts. */

/* ---- sans ---- */
@font-face {
  font-family: 'Inter Variable';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/fonts/inter-latin-var.woff2') format('woff2');
}
@font-face {
  font-family: 'Manrope Variable';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url('/fonts/manrope-latin-var.woff2') format('woff2');
}

/* ---- display ---- */
@font-face {
  font-family: 'Space Grotesk Variable';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('/fonts/space-grotesk-latin-var.woff2') format('woff2');
}
@font-face {
  font-family: 'Fraunces Variable';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/fonts/fraunces-latin-var.woff2') format('woff2');
}

/* ---- rounded ---- */
@font-face {
  font-family: 'Quicksand Variable';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('/fonts/quicksand-latin-var.woff2') format('woff2');
}
@font-face {
  font-family: 'Nunito Variable';
  font-style: normal;
  font-weight: 200 1000;
  font-display: swap;
  src: url('/fonts/nunito-latin-var.woff2') format('woff2');
}

/* ---- mono ---- */
@font-face {
  font-family: 'JetBrains Mono Variable';
  font-style: normal;
  font-weight: 100 800;
  font-display: swap;
  src: url('/fonts/jetbrains-mono-latin-var.woff2') format('woff2');
}
@font-face {
  font-family: 'Space Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/space-mono-latin-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Space Mono';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/space-mono-latin-700.woff2') format('woff2');
}
