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

h1, h2, h3, h4 {
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  color: var(--color-text);
}

h1 { font-size: var(--font-size-2xl); }
h2 { font-size: var(--font-size-xl); line-height: var(--line-height-snug); }
h3 { font-size: var(--font-size-lg); line-height: var(--line-height-snug); }

p {
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

.overline {
  display: inline-block;
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  letter-spacing: var(--letter-spacing-wide);
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.overline--white {
  color: rgba(255, 255, 255, 0.7);
}

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