/* Georgian, and only Georgian.

   The landing publishes a Georgian page while none of its three faces covers the
   script — Golos Text and Unbounded stop at Cyrillic, JetBrains Mono adds Greek
   and stops. Until 2026-08-19 that page was drawn in whatever font the reader's
   device happened to have, and the OG image baked in whatever the render
   container happened to have, which is not reproducible.

   Declared under its own name and added to every font stack. Declaring it under
   the brand families' names was tried first and does not work: Chromium settles
   the weight within a family before it looks at which face covers the character,
   so a brand face matching the requested weight exactly wins and the Georgian
   letters fall through to a system font. Verified through CDP, which names the
   font actually used:

     "Golos Text"                        → FreeSans (20), Golos Text (2)
     "Golos Text", "Noto Sans Georgian"  → Noto Sans Georgian (20), Golos Text (2)

   The unicode-range keeps it to Georgian, so it is never consulted for a letter
   a brand face already has. One file, 41 KB.

   It lives outside fonts.css on purpose: that file is generated by
   scripts/fetch-fonts.sh and an edit there would vanish on the next
   regeneration. */

@font-face {
  font-family: 'Noto Sans Georgian';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(fonts/PlIVFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zcGyUkdjo.woff2) format('woff2');
  unicode-range: U+0589, U+10A0-10FF, U+1C90-1CBA, U+1CBD-1CBF, U+205A, U+2D00-2D2F, U+2E31;
}
