/* headings */
$headings: (
  'h1': (
    'font-size': $font-size-lg,
    'font-weight': $font-weight-bold,
    'mobile': (
      'font-size': $font-size-xxmd,
    ),
  ),
  'h2': (
    'font-size': $font-size-xxmd,
    'font-weight': $font-weight-bold,
    'mobile': (
      'font-size': $font-size-xmd,
    ),
  ),
  'h3': (
    'font-size': $font-size-xmd,
    'font-weight': $font-weight-bold,
    'mobile': (
      'font-size': $font-size-md,
    ),
  ),
  'h4': (
    'font-size': $font-size-md,
    'font-weight': $font-weight-bold,
    'mobile': (
      'font-size': $font-size-xdefault,
    ),
  ),
  'p, span': (
    'font-size': $font-size-default,
    'font-weight': $font-weight-normal,
    'mobile': (
      'font-size': $font-size-xdefault,
    ),
  ),
);
