/*
 * Inter + Inter Tight — self-hosted from Google Fonts v20 / v9.
 * Latin subset only (covers ES/EN content). SIL OFL 1.1 (LICENSE-OFL.txt).
 *
 * Self-hosting kills the third-party fonts.googleapis.com + fonts.gstatic.com
 * handshakes (~2 round trips, ~100ms on mobile) and lets us preload the
 * woff2 directly with high priority — eliminating the swap-induced CLS the
 * async-Google-Fonts trick produced (was 0.124 on /?s=docker).
 */
/*
 * No `unicode-range`: there's a single latin subset file per family, so range-
 * gating saves no download (nothing else to pick) — it only DEFERS the face's
 * activation until a matching glyph is laid out, which made Chrome report the
 * high-priority preload as "preloaded but not used in time". Without it the face
 * is unconditionally needed, so the preload is consumed immediately. Glyphs
 * absent from the subset still fall back per-glyph, so coverage is unchanged.
 */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("./inter-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Inter Tight";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("./inter-tight-latin.woff2") format("woff2");
}
