body {
  font-family: var(--font-primary);
  font-weight: var(--weight-regular);
  font-size: var(--text-body);
  color: var(--text-primary);
  background-color: var(--bg-primary);
  transition: background-color var(--transition-base), color var(--transition-base);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: var(--weight-bold);
  line-height: var(--leading-tight);
}

h1 { font-size: var(--text-display); }
h2 { font-size: var(--text-h1); }
h3 { font-size: var(--text-h2); }
h4 { font-size: var(--text-h3); }

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

.text-muted {
  color: var(--text-muted);
}

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