/* ==========================================================================
   KCOHL 2026 — brand typefaces, self-hosted
   --------------------------------------------------------------------------
   League Gothic  : display / all headings. Single weight (400).
   Work Sans      : body, UI, labels. Variable weight.

   The Work Sans files are variable fonts that have been instanced down to a
   300-700 weight range. The 300 floor is enforced in the font binary itself,
   so a stray font-weight:200 anywhere on the site still renders at 300 and
   can never go lighter than the brand allows.
   ========================================================================== */

@font-face {
	font-family: 'League Gothic';
	src: url('../fonts/leaguegothic.woff2') format('woff2');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Work Sans';
	src: url('../fonts/worksans-var.woff2') format('woff2-variations'),
	     url('../fonts/worksans-var.woff2') format('woff2');
	font-weight: 300 700;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Work Sans';
	src: url('../fonts/worksans-italic-var.woff2') format('woff2-variations'),
	     url('../fonts/worksans-italic-var.woff2') format('woff2');
	font-weight: 300 700;
	font-style: italic;
	font-display: swap;
}
