/* ==========================================================================
   02-typography.css — Type scale matching website.pen
   ========================================================================== */

body {
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height-normal);
  color: var(--color-text);
  background-color: var(--color-page-bg);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: var(--font-weight-bold);
  color: var(--color-text);
}

h1 {
  font-size: var(--font-size-h1);
  letter-spacing: -1px;
  line-height: var(--line-height-tight);
}

h2 {
  font-size: var(--font-size-h2);
  letter-spacing: -0.5px;
  line-height: var(--line-height-heading);
}

p {
  color: var(--color-text-secondary);
  max-width: 65ch;
}

.lead {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-normal);
  color: var(--color-text-secondary);
}

.text-sm {
  font-size: var(--font-size-sm);
}

.text-xs {
  font-size: var(--font-size-xs);
}

.text-center {
  text-align: center;
}

em {
  font-style: italic;
  color: var(--color-primary);
}

strong {
  font-weight: var(--font-weight-semibold);
}
