/* WhatsApp's emoji as a webfont. CBDT/CBLC colour format — renders in Chrome and Firefox;
   Safari falls back to Apple Color Emoji, which this set derives from, so the difference is
   negligible there.

   Referenced from index.html with a <link>, deliberately NOT imported from src/: the .ttf is
   gitignored, and a Vite import of a missing file breaks the build while a missing <link>
   target is just a 404 that falls through to system emoji.

   `font-display: swap` keeps text visible while ~28 MB downloads on a cold cache; every later
   load is cached. See docs/emoji.md for provenance and the chunking optimisation we skipped. */
@font-face {
  font-family: "WhatsApp Emoji";
  src: url("/emoji/WhatsAppEmoji.ttf") format("truetype");
  font-display: swap;
}
