/* Self-hosted web fonts (previously loaded from fonts.googleapis.com).
 *
 * Only Tenor Sans is defined here — Corben was on the old Google Fonts <link>
 * but is never referenced by landing.css, so it was dropped. The woff2 is fetched
 * with a pinned hash and injected into static/ by the Nix build
 * (packages.<system>.landingAssets); the devshell stages the same file for local
 * `zola serve`. Tenor Sans is now the only face the site loads: the bundled
 * Bifur TTF this comment used to point at had no @font-face anywhere and no
 * rule referencing it, so the file was removed — the logo is logo.svg. */
@font-face {
  font-family: "Tenor Sans";
  font-style: normal;
  font-weight: 400;
  /* `optional` rather than `swap`: swap guarantees a visible re-layout once the
     woff2 lands, which is the font shift on load. `optional` gives the font a
     short window (~100ms) to arrive — paired with the <link rel="preload"> in
     base.html it almost always wins that race and renders correctly on first
     paint. If it loses, the page stays in the fallback for that load instead of
     reflowing, and the cached font is used from the next navigation on. */
  font-display: optional;
  src: url("/fonts/tenor-sans-latin-400-normal.woff2") format("woff2");
}
