/* Font loaded via Google Fonts (Jost) in index.html */

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

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

h1 {
  font-size: var(--font-size-h1-mobile);
}

h2 {
  font-size: var(--font-size-h2-mobile);
}

h3 {
  font-size: var(--font-size-h3);
}

@media (min-width: 768px) {
  h1 {
    font-size: var(--font-size-h1-desktop);
  }

  h2 {
    font-size: var(--font-size-h2-desktop);
  }
}

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

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

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