/* Self-hosted Besley + Archivo + Fragment Mono (woff2 under /static/fonts/) — NO
   Google Fonts CDN dependency, so fonts work offline AND with Brave Shields
   on (local-first). Do not re-add a webfont CDN @import.
   Besley and Archivo are variable fonts (single file spans the whole weight
   axis via `font-weight: <min> <max>`), latin subset only.

   Only the 3 families actually used on the page are declared here. Earlier
   drafts also shipped JetBrains Mono, Syne Mono, and Ubuntu Mono (regular +
   bold) — experimental treatments from design exploration that never made it
   into the final page — removed 2026-07-23 along with their .woff2 files,
   since they were pure dead weight sitting in the deploy. */

@font-face {
  font-family: 'Besley';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url(/static/fonts/besley-variable.woff2) format('woff2');
}

@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/static/fonts/archivo-variable.woff2) format('woff2');
}

@font-face {
  font-family: 'Fragment Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/static/fonts/fragmentmono.woff2) format('woff2');
}
