/*
NOTE regarding the use of font-display:swap;
	this is for performance; it causes browsers to render the fallback font family while this font loads
*/

/* heading font */
@font-face {
	font-family:Vonique;
	font-display:swap;
	src: url('../fonts/vonique-43/vonique_43_f-webfont.woff2') format('woff2'),
		url('.../fonts/vonique-43/vonique_43_f-webfont.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}

/* body font */
@font-face {
	font-family:NotoSans;
	font-style:normal;
	font-display:swap;
	/*
	the ttf for this is 2MB and we don't use most of it!
	even the woff2 is about 0.9MB
	*/
/*
	src: url('../fonts/Noto-Sans/NotoSans-VariableFont_wdth,wght.woff2') format('woff2'),
		url('../fonts/Noto-Sans/NotoSans-VariableFont_wdth,wght.ttf');
*/
	/* loading regular only (which is all we use) is about 0.2MB for the woff2 */
	src:url('../fonts/Noto-Sans/static/NotoSans-Regular.woff2') format('woff2'),
		url('../fonts/Noto-Sans/static/NotoSans-Regular.ttf');
}
/*
@font-face {
	font-family:Sansation;
	font-style:normal;
	font-display:swap;
	src:url('../fonts/Sansation/Sansation-Regular.ttf');
}
*/

/* navbar and button font */
@font-face {
	font-family:Baumans;
	font-style:normal;
	font-display:swap;
	src:url('../fonts/Baumans/Baumans-Regular.woff2') format('woff2'),
		url('../fonts/Baumans/Baumans-Regular.ttf');
}

/* phosphor icons are loaded via wp_enqueue_style in functions.php, so are not present here */

