/*
 * Self-hosted web fonts (#117).
 *
 * This file is intentionally NOT part of the Bun bundle — it lives in
 * public/ and is linked into index.html by build.ts after the build. Bun's
 * CSS bundler base64-inlines any woff2 it can resolve from a `url()` (and
 * errors on absolute paths it can't), which is what bloated the CSS chunk.
 * Keeping @font-face out of the bundle lets the woff2 files load and cache
 * separately.
 *
 * Satoshi is downloaded from Fontshare (free license) — see DESIGN.md.
 */
@font-face {
  font-family: "Satoshi";
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url(/fonts/satoshi-400-normal.woff2) format("woff2");
}
@font-face {
  font-family: "Satoshi";
  font-style: normal;
  font-display: swap;
  font-weight: 500;
  src: url(/fonts/satoshi-500-normal.woff2) format("woff2");
}
@font-face {
  font-family: "Satoshi";
  font-style: normal;
  font-display: swap;
  font-weight: 700;
  src: url(/fonts/satoshi-700-normal.woff2) format("woff2");
}
