/* ============================================================
   fonts.css — Self-hosted Geist + Geist Mono
   Drop-in; netlify.toml caches /fonts/* for 1 year immutable.
   Expected files under /fonts/ (copied by each site's Vite build):
     Geist-Variable.woff2
     GeistMono-Variable.woff2
   Fallback to system stack if files are missing.
   ============================================================ */

@font-face {
  font-family: 'Geist';
  src: url('/fonts/Geist-Variable.woff2') format('woff2-variations'),
       url('/fonts/Geist-Variable.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Geist Mono';
  src: url('/fonts/GeistMono-Variable.woff2') format('woff2-variations'),
       url('/fonts/GeistMono-Variable.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
