/*
  Inter, self-hosted.

  Was three round trips to Google before anything could paint: a preconnect,
  a render-blocking stylesheet, then seven font files totalling 213 KB across
  six unicode ranges we do not use.

  Google now serves Inter as a VARIABLE font — the five weight URLs it hands
  back are byte-identical (sha256 3100e775…), one 47 KB file covering 100–900.
  So one file replaces all of it, and the `font-weight: 100 900` descriptor is
  what lets 500/600/700/800 all resolve from it.

  Latin subset only. The other ranges were most of the weight and none of the
  use — this is a US roofing product.

  Served from our own origin with the immutable, hashed filename every other
  static file gets, so it is cached far harder than a third party can be.

  Inter is SIL Open Font License 1.1; redistribution is permitted.
*/
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  /* swap: show the fallback immediately rather than invisible text while the
     font loads. A blank page is the failure mode this whole change is about. */
  font-display: swap;
  src: url("fonts/inter-var-latin.260c81a4759b.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;
}
