/* Self-hosted brand type for the JMorex flagship.
 *
 * Until this file existed the portal declared no brand font at all — public.css
 * --sans was an OS stack ("Segoe UI Variable Display", "Segoe UI", …), so the
 * flagship rendered in whatever face the visitor's operating system defaults to.
 * That is the single most visible generic tell a site can have, and it is why
 * the registry carried type.font-display / type.font-ui as UNRESOLVED.
 *
 * Self-hosted, never a CDN. scripts/check-public-surface.sh blocks third-party
 * runtime hosts on this surface, font providers included — the whole point is
 * that no network filter, proxy, or provider outage can silently drop the brand
 * type back to system-ui.
 *
 * Paths are bare filenames, NOT "fonts/…" and NOT "/fonts/…". CSS url() resolves
 * against the STYLESHEET, not the document, and this stylesheet already lives in
 * fonts/ — so "fonts/satoshi-400.woff2" resolves to fonts/fonts/satoshi-400.woff2
 * and 404s. (It did; a browser probe caught it. The jova-public copy of this file
 * uses absolute /fonts/… paths, which is correct for a site served at the domain
 * root but wrong here, where the portal uses relative asset references throughout.)
 * The <link rel="preload"> in index.html is a document-relative reference and
 * therefore DOES keep the fonts/ prefix — the two are not the same base.
 *
 * Licence: fonts/LICENSE.md — ITF Free Font License via Fontshare, self-hosting
 * permitted. Files are byte-identical to the ones vendored for jova-public on
 * `feat/public-design-physics`, so the estate ships one set of faces, not two.
 *
 * Weights: 400 body · 500 medium · 700 display. Clash Display is deliberately
 * NOT vendored here — it is a Jova Studios choice pending an operator ruling,
 * and JMorex's motif ("restraint as the luxury signal") wants the quieter face.
 */

@font-face {
  font-family: "Satoshi";
  src: url("satoshi-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: url("satoshi-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: url("satoshi-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
