/*
  Font faces for TGH Sales Design System.

  BRAND DISPLAY FONT: "Usual" — self-hosted from licensed .otf files
    (fonts/Regular.otf, fonts/Bold.otf, fonts/Bold_Italic.otf).
    Used for brand moments: login title, brand headers, marketing contexts.

  PRIMARY UI FONT: Inter — loaded from Google Fonts (CDN delivery, not uploaded).
*/

/* ── Inter (UI) — Google Fonts CDN — @import must precede @font-face ───── */
@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,400;14..32,500;14..32,600;14..32,700;14..32,800&display=swap');

/* ── Usual (brand display) — self-hosted ──────────────────────────────── */
@font-face {
  font-family: 'Usual';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/Regular.otf') format('opentype');
}
@font-face {
  font-family: 'Usual';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/Bold.otf') format('opentype');
}
@font-face {
  font-family: 'Usual';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/Bold_Italic.otf') format('opentype');
}
