/* =============================================================
   TYPOGRAPHY.CSS
   Typography scale utilities — .t-display, .t-heading, etc.
   ============================================================= */

/* ── Typography scale ─────────────────────────────────────── */
.t-display {
  font-family: var(--font-display);
  font-weight: var(--weight-display);
  letter-spacing: var(--ls-display);
  line-height: 1.08;
}
.t-heading {
  font-family: var(--font-display);
  font-weight: var(--weight-heading);
  line-height: 1.18;
}
.t-flair {
  font-family: var(--font-flair);
  font-style: var(--flair-style);
  font-weight: var(--weight-flair);
}
.t-body  { font-family: var(--font-body); font-weight: 400; line-height: 1.7; }
.t-ui    { font-family: var(--font-ui); font-weight: 600; letter-spacing: 0.06em; }
.t-label {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
