/* ⭐ THE GAME'S EVERYDAY LETTERING — ONE PLACE (PP-109). Wyatt, 2026-09-27, off the lettering picker: "Lettering: Figtree ·
   Used: Everywhere, including yer Mac · Use it for everything so the game always looks consistent across all browsers."
   WHY IT IS SERVED HERE: the game used to ask for 'Avenir Next', which only Apple devices carry and which has no free
   licence to give away, so a Windows browser drew Segoe UI and an Android phone Roboto (his friend's screenshot,
   2026-09-26). Figtree (SIL Open Font Licence) is carried by the game itself — assets/fonts/figtree.woff2, one 20 KB file
   holding every weight from 300 to 900 — so every browser draws the same letters.
   EVERY rule, inline style and page that sets sans lettering says var(--ppSans) and nothing else;
   scripts/qa/one_lettering_check.mjs goes red if a sans face is named anywhere but here. The fallbacks after Figtree
   only fill the moment before it lands. Georgia (buttons, headings) and the story's IM Fell English are not this. */
@font-face { font-family: "Figtree"; src: url("../../assets/fonts/figtree.woff2") format("woff2");
  font-weight: 300 900; font-style: normal; font-display: swap; }
:root { --ppSans: Figtree, "Avenir Next", Avenir, "Segoe UI", system-ui, sans-serif; }
