/* design-system/typography.css
   .eyebrow, .title, .title-md, .title-sm, .lead, .body, .small, .mono */

.eyebrow {
  font-family: var(--font-mono);
  font-size: 20px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
}
.title {
  font-size: 96px;
  font-weight: 700;
  letter-spacing: -0.028em;
  line-height: 0.96;
  text-wrap: balance;
}
.title-md {
  font-size: 68px;
  font-weight: 700;
  letter-spacing: -0.022em;
  line-height: 1.0;
}
.title-sm {
  font-size: 52px;
  font-weight: 700;
  letter-spacing: -0.018em;
  line-height: 1.02;
}
.lead {
  font-size: 32px;
  font-weight: 400;
  line-height: 1.35;
  color: var(--ink-2);
  letter-spacing: -0.01em;
}
.body {
  font-size: 26px;
  line-height: 1.4;
  color: var(--ink-2);
  letter-spacing: -0.005em;
}
.small {
  font-size: 22px;
  line-height: 1.4;
  color: var(--ink-3);
}
.mono {
  font-family: var(--font-mono);
  font-feature-settings: "tnum" 1;
}
