/* ─── Country flag emoji on Windows ─────────────────────────────────────── */
/* Windows' emoji font has no country flags, so Chrome and Edge there draw a
   flag like 🇳🇱 as the two letters "NL". This font carries only the flags,
   and the unicode-range keeps the browser from using it (or downloading it)
   for anything else. It heads the --font-sans stack in tailwind/application.css.

   The weight range stops the browser faking bold on the colour glyphs when a
   flag sits in bold text.

   "Twemoji Country Flags" from country-flag-emoji-polyfill 0.1.10 by TalkJS
   (MIT), https://github.com/talkjs/country-flag-emoji-polyfill, which packs
   the Twemoji flag artwork into a font; the file here is theirs, unchanged.
   Twemoji graphics copyright 2020 Twitter, Inc and other contributors,
   licensed under CC-BY 4.0 (https://creativecommons.org/licenses/by/4.0/),
   https://github.com/twitter/twemoji. Full terms in
   fonts/TwemojiCountryFlags-LICENSE.md. */
@font-face {
  font-family: "Twemoji Country Flags";
  font-weight: 100 900;
  font-style: normal;
  unicode-range: U+1F1E6-1F1FF, U+1F3F4, U+E0062-E0063, U+E0065, U+E0067,
    U+E006C, U+E006E, U+E0073-E0074, U+E0077, U+E007F;
  src: url("/assets/TwemojiCountryFlags-468538bb.woff2") format("woff2");
  font-display: swap;
}
