/* ── Inter, self-hosted — the site's single typeface ─────────────────────────
   Lives in its own file because ALL SIX pages need it, but only the three legal
   pages use site.css. Defining it here means one @font-face, not two copies
   that can drift.

   Previously loaded from fonts.googleapis.com, which sent every visitor's IP
   address and referring page to Google before the page finished rendering — on
   a site whose Privacy Policy says it shares nothing with third parties.
   Serving it ourselves means welcomeverify.com talks only to Cloudflare.

   ONE file covers every weight. Inter on Google Fonts is a VARIABLE font, so
   the four weights the pages used to request (400/500/600/700) were four
   downloads of the same 47 KB file — verified by checksum. `font-weight: 100
   900` lets the browser interpolate any weight from it.

   Only the `latin` subset is kept (the site is English-only); Google also
   served cyrillic, greek and vietnamese.

   Inter is SIL Open Font License 1.1 — self-hosting is expressly permitted.
   ──────────────────────────────────────────────────────────────────────── */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/assets/fonts/inter-variable.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
