/*
 * Self-hosted Satoshi @font-face. Auto-loaded (instead of the Fontshare CDN) when the WOFF2
 * file(s) are present in ../fonts/ — see assets/fonts/README.md. Self-hosting removes the
 * third-party request (privacy/GDPR + a faster, dependency-free first paint).
 *
 * The plugin ships the five static weights (no variable file). A declaration for a
 * missing src is NOT free: any weight matched by the range (e.g. 600) made browsers
 * request Satoshi-Variable.woff2 → guaranteed 404 on every page load. If the variable
 * file is ever bundled, re-add its @font-face (font-weight: 300 900) ABOVE the static
 * ones and it will take over the in-between weights.
 */

/* Static weights (shipped in ../fonts/). */
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Black.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
