/* typography.css — Far Shore */

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-charcoal);
  line-height: var(--leading-normal);
}

h1, h2, h3 {
  font-family: var(--font-heading);
  line-height: var(--leading-tight);
  font-weight: 400;
}

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

.text-poetry {
  font-family: var(--font-poetry);
  font-style: italic;
  font-size: var(--text-md);
  line-height: var(--leading-loose);
}

.text-label {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-earth);
}

.text-xs  { font-size: var(--text-xs); }
.text-sm  { font-size: var(--text-sm); }
.text-md  { font-size: var(--text-md); }
.text-lg  { font-size: var(--text-lg); }
.text-xl  { font-size: var(--text-xl); }
.text-2xl { font-size: var(--text-2xl); }

@media (max-width: 768px) {
  h1 { font-size: var(--text-xl); }
  h2 { font-size: var(--text-lg); }
}

@media (max-width: 480px) {
  h1 { font-size: var(--text-lg); }
}
