/* ============================================================
   Satoshi — the site's one typeface, self-hosted.

   Linked by every page that asks for Satoshi. Two histories it settles:

   aeon, collectors and the æon shop template were loading Satoshi from
   Fontshare's CDN. Same typeface, now from our own origin: nothing changes on
   screen, one less third party.

   index, logs, spectral and the prime pages @font-face'd Satoshi-Regular /
   Medium / Bold from /assets/fonts/ — files that were never in the repo. On a
   machine with Satoshi installed (the studio's) the pages looked right, so
   the 404s went unnoticed for a long time; everyone else got Helvetica. The
   design was always Satoshi, so these pages now serve it rather than relying
   on the reader happening to own the font.

   One variable file covers the whole ramp the site uses (300, 400, 500, 600,
   700), which is 42KB against ~600KB of static .otf/.ttf, and it is served
   from our own origin: no third-party stylesheet, no extra connection, and it
   works offline in dev.

   Declared under both family names on purpose. The drop pages ask for
   'Satoshi Variable' first and some of those stacks have no 'Satoshi' behind
   it; the file is fetched once whatever the name resolves to.

   The filename carries a version because /assets/* is served immutable —
   a changed font must be a changed name (Satoshi-Variable-v2.woff2).
   Satoshi is by Indian Type Foundry, free for personal and commercial use
   under the ITF Free Font License.
   ============================================================ */

@font-face {
  font-family: 'Satoshi';
  src: url('/assets/fonts/Satoshi-Variable-v1.woff2') format('woff2-variations'),
       url('/assets/fonts/Satoshi-Variable-v1.woff2') format('woff2');
  font-weight: 300 900;
  font-style: normal;
  /* Text is never invisible: Helvetica holds the page and Satoshi swaps in. */
  font-display: swap;
}

@font-face {
  font-family: 'Satoshi Variable';
  src: url('/assets/fonts/Satoshi-Variable-v1.woff2') format('woff2-variations'),
       url('/assets/fonts/Satoshi-Variable-v1.woff2') format('woff2');
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}
