/*
 * Semilla - Global typography.
 *
 * @package Semilla
 * @since   0.2.0
 */

body {
  font-family: var(--sem-font-family-base);
  font-size: var(--sem-font-size-base);
  line-height: var(--sem-line-height-base);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--sem-font-family-heading);
  line-height: var(--sem-line-height-heading);
  color: var(--sem-color-dark);
}

h1 { font-size: var(--sem-font-size-4xl); }
h2 { font-size: var(--sem-font-size-3xl); }
h3 { font-size: var(--sem-font-size-2xl); }
h4 { font-size: var(--sem-font-size-xl); }
h5 { font-size: var(--sem-font-size-lg); }
h6 { font-size: var(--sem-font-size-base); }

@media (max-width: 767px) {
  h1 { font-size: var(--sem-font-size-3xl); }
  h2 { font-size: var(--sem-font-size-2xl); }
}
