/* Type utilities — Design.md §3 */

.display {
  font-family: var(--font-display);
  font-weight: 400;          /* serif weight stays light, never bold */
  letter-spacing: -0.005em;
  line-height: 1.05;
}
.italic { font-style: italic; }

/* Eyebrow — Design.md §3.3 — generously letter-spaced uppercase label */
.eyebrow {
  font-family: var(--font-sans);
  font-size: var(--fs-eyebrow);
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
}

.body-lg {
  font-family: var(--font-sans);
  font-size: 1.125rem;       /* 18px */
  line-height: 1.6;
  font-weight: 400;
  color: var(--text);
}

/* Readable measure for body copy — Design.md §3.4 */
.prose p { max-width: 62ch; }
