/* Inter, self-hosted.
 *
 * Replaces a render-blocking stylesheet on fonts.googleapis.com whose only
 * job was to hand back the two @font-face rules below. That indirection cost
 * a DNS lookup, a TCP connect and a TLS handshake to one host before the
 * browser even learned the name of the file it needed on a SECOND host
 * (fonts.gstatic.com) -- two serial round trips ahead of first paint, for
 * 925 bytes of CSS.
 *
 * ONE variable face covers 400-800. Google's css2 endpoint was asked for five
 * static weights, which is five separate downloads of the same alphabet.
 *
 * font-display:swap: the text paints immediately in the fallback stack and
 * reflows once when Inter lands. For running prose that is the right trade --
 * `block` would leave a lesson invisible for up to three seconds on a slow
 * connection. The fallback is metric-close enough that the reflow is small.
 *
 * Lives under fonts/inter/ rather than fonts/<app>/ because forum serves the
 * identical face. It is the same bytes either way -- the two hosts are separate
 * origins so neither can reuse the other's cache entry -- but one copy on disk
 * means one file to replace when the typeface is updated.
 *
 * latin-ext is declared but almost never fetched: unicode-range means the
 * browser downloads it only for a page that actually contains those
 * characters. English and Kinyarwanda do not, so the 85 KB stays on disk.
 */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../../fonts/inter/inter-latin-var.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;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../../fonts/inter/inter-latin-ext-var.1ad231aac0a8.woff2") format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
