/*
  Self hosted fonts for CCL Gas.
  DM Sans (headings) and Inter (body). No external CDN is called at runtime.

  These @font-face rules load the bundled woff2 files from /assets/fonts/.
  Variable files are preferred (one file covers every weight). If the files
  are absent the site cleanly falls back to a high quality system font stack,
  so nothing ever breaks on a fresh install. Drop the two woff2 files in to
  activate the exact brand faces (see assets/fonts/README.txt).
*/

/* DM Sans, variable weight 100 to 1000 */
@font-face{
  font-family:'DM Sans';
  font-style:normal;
  font-display:swap;
  font-weight:100 1000;
  src:url('../fonts/dm-sans-latin-wght-normal.woff2') format('woff2-variations');
}

/* Inter, variable weight 100 to 900 */
@font-face{
  font-family:'Inter';
  font-style:normal;
  font-display:swap;
  font-weight:100 900;
  src:url('../fonts/inter-latin-wght-normal.woff2') format('woff2-variations');
}
