/* The Silverstone admin type faces, self-hosted.
 *
 * ── WHY THESE FILES ARE IN THE REPOSITORY AND NOT ON A CDN ─────────────────
 *  The admin's CSP is deliberately tight — `font-src 'self' data:` and
 *  `style-src 'self' 'unsafe-inline'` (src/proxy.ts). Loading fonts from a
 *  third-party origin would widen both directives on a console that shows
 *  order, customer and payment data. Self-hosting also avoids another DNS/TLS
 *  round trip before the first heading can paint.
 *
 * ── WHY THE FAMILY NAMES ARE LITERAL ───────────────────────────────────────
 *  `@wirewings/theme-silverstone-admin` names "Inter" and
 *  "Cormorant Garamond" in its `typography.*.fontFamily` stacks, while
 *  `toStylesheet` refuses token values containing CSS syntax. These faces must
 *  therefore be registered under those exact family names; `next/font` uses
 *  scoped names instead.
 *
 * ── WHAT IS COVERED ────────────────────────────────────────────────────────
 *  Inter UI weights 400, 500 and 600, plus Cormorant Garamond heading weights
 *  500 and 600. The admin uses upright text only. `font-display: swap` keeps
 *  text readable before the selected face arrives.
 *
 *  Copyright, upstream provenance, hashes and the complete SIL Open Font
 *  License 1.1 are retained in `public/ASSET_NOTICES.md` and
 *  `public/fonts/OFL-1.1.txt`. Update both records before replacing a binary.
 */

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/inter-400.ttf') format('truetype');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/inter-500.ttf') format('truetype');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/inter-600.ttf') format('truetype');
}

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/cormorant-garamond-500.ttf') format('truetype');
}

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/cormorant-garamond-600.ttf') format('truetype');
}
