/* Inter, served by this shop instead of by Google.

   Both landing.html and game.html loaded Inter from fonts.googleapis.com, which means every
   visitor's browser announced itself to Google — IP address, User-Agent and referring page —
   before the shop's own front page had finished drawing. Nobody consented to that and it buys
   the shop nothing: this is one 48KB file.

   One @font-face, not five. Google publishes Inter v20 as a variable font: its own stylesheet
   declares a separate face per weight, and all five point at the same woff2. `font-weight:
   100 900` says the same thing in one rule, and the browser interpolates 400/500/600/700/800
   from the single file.

   Latin subset only, which is what the Google stylesheet was serving anyway. Thai text on this
   site has always fallen through to system-ui — Inter carries no Thai glyphs — so nothing about
   Thai rendering changes.

   `font-display: swap` is kept from the original: text paints immediately in the fallback and
   re-renders when the file lands, rather than leaving the page blank while it downloads. */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304,
    U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
