/* swarm.os — self-hosted webfonts
   Fraunces + Geist Mono sourced from Google Fonts (latin subset).
   Satoshi + Zodiak sourced from Fontshare.
   All files live in this folder; no external font requests at runtime. */

/* Fraunces — roman, variable weight range 300–600 */
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url('fraunces-roman-latin.woff2') format('woff2');
}

/* Fraunces — italic, variable weight range 300–500 */
@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  font-weight: 300 500;
  font-display: swap;
  src: url('fraunces-italic-latin.woff2') format('woff2');
}

/* Geist Mono — variable font; same source file serves both the 400 and 500
   static instances (matches how Google Fonts itself serves this family). */
@font-face {
  font-family: 'Geist Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('geistmono-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Geist Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('geistmono-latin.woff2') format('woff2');
}

/* Satoshi */
@font-face {
  font-family: 'Satoshi';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('satoshi-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Satoshi';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('satoshi-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Satoshi';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('satoshi-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Satoshi';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('satoshi-900.woff2') format('woff2');
}

/* Zodiak — hero display serif. Fontshare only ships static cuts at 400 and
   700; 700 is the weight used everywhere on the page (the hero title). */
@font-face {
  font-family: 'Zodiak';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('zodiak-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Zodiak';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('zodiak-700.woff2') format('woff2');
}
