/* Inter, self-hosted -- the same face ise.rw and rsef.rw already serve.
 *
 * 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 under a kilobyte of CSS.
 *
 * ONE variable face covers 400-800. The css2 endpoint was asked for five static
 * weights (300;400;500;600;700), which is five separate downloads of the same
 * alphabet.
 *
 * The .woff2 files are the ones under fonts/inter/, shared with the other two
 * hosts. Same bytes either way -- three separate origins cannot reuse each
 * other's cache entries -- but one copy on disk is one file to replace when the
 * typeface is updated.
 *
 * font-display:swap: text paints immediately in the fallback stack and reflows
 * once when Inter lands.
 *
 * 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;
}
