/*
 * Kenmore brand typography.
 *
 * Headings / display: Manrope ExtraBold (800)
 * Body / small UI text: Manrope Regular (400) / Medium (500)
 *
 * Faces are loaded from Google Fonts in inc/enqueue.php.
 * This file keeps local @font-face hooks for offline fallbacks if woff2
 * files are later dropped into assets/fonts/.
 */

@font-face {
	font-family: "Manrope";
	src:
		local("Manrope Regular"),
		local("Manrope-Regular"),
		url("../fonts/manrope-regular.woff2") format("woff2");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Manrope";
	src:
		local("Manrope Medium"),
		local("Manrope-Medium"),
		url("../fonts/manrope-medium.woff2") format("woff2");
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Manrope";
	src:
		local("Manrope ExtraBold"),
		local("Manrope-ExtraBold"),
		url("../fonts/manrope-extrabold.woff2") format("woff2");
	font-weight: 800;
	font-style: normal;
	font-display: swap;
}
