/* ==========================================================================
   HEADING ELEMENTS
   ========================================================================== */

/**
 * Simple default styles for headings 1 through 6.
 *
 * We have all of our heading font sizes defined here. Passing these pixel
 * values into our `font-size()` mixin will generate a rem-based `font-size`
 * with a pixel fallback, as well as generating a `line-height` that will
 * sit on our baseline grid.
 */

@each $name, $value in $global-font-sizes {
  #{$name} {
    @include font-size($value);
  }
}
