/* Kwintely typography — all self-hosted, no Google Fonts / no external CDN.
   System (two families, single vendor):
     body / UI        : Geist Sans  (OFL, Vercel)
     display / IDs    : Geist Mono  (OFL, Vercel)  — used for hero titles AND patent IDs
*/

/* ── Geist Sans — 400 / 500 / 700. Single file per weight, full Latin-Extended. ── */
@font-face {
  font-family: 'Geist';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/static/fonts/geist-sans-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Geist';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/static/fonts/geist-sans-medium.woff2') format('woff2');
}
@font-face {
  font-family: 'Geist';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/static/fonts/geist-sans-bold.woff2') format('woff2');
}

/* ── Geist Mono — 400 / 500 for patent IDs, tabular numerals. ── */
@font-face {
  font-family: 'Geist Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/static/fonts/geist-mono-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Geist Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/static/fonts/geist-mono-medium.woff2') format('woff2');
}
