/*
  Inter, self-hosted.

  Previously loaded from fonts.googleapis.com — a RENDER-BLOCKING request to a
  third party, so the page could not paint until Google answered. It also sent
  every visitor's IP to Google, which matters because the Privacy Policy
  explicitly covers EEA visitors.

  ⚠️ ONE FILE, NOT FIVE. Google's CSS declares a separate @font-face per weight,
  but all five point at the SAME variable font — verified byte-identical. Saving
  them per weight would have hosted five copies of one 48 KB file. The variable
  axis is declared as a range instead, so every weight from 100 to 900 works,
  including any the design uses later.

  Only the `latin` subset is kept; Google serves seven this site has no use for.
*/
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/fonts/inter-var.woff2') format('woff2-variations');
  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;
}
