/* ============================================================
   Growth Club — Fonts (pruned 2026-05-20)

   Self-hosted faces actually referenced in CSS:
     Satoshi Regular (400), Medium (500), Bold (700), Black (900)
     Roboto  Regular (400), Medium (500)

   Italics removed — only .t-emph used font-style: italic and is
   not referenced in any HTML. If italic reappears in copy, add
   the matching face back here and copy the file out of _legacy/.

   font-display: swap — paint with fallback while OTF/TTF loads.
   ============================================================ */

@font-face {
  font-family: 'Satoshi';
  src: url('Satoshi-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('Satoshi-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('Satoshi-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('Satoshi-Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Roboto';
  src: url('Roboto-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Roboto';
  src: url('Roboto-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
