/*
 * PORCH font loader.
 *
 * Inter and Lora ship as variable-axis TTF files in this theme. Loaded
 * locally per PORCH spec: "Inter and Lora fonts are loaded locally via
 * Bricks Custom Fonts panel, NOT via Google Fonts API." This CSS provides
 * the @font-face declarations directly so the fonts load even before
 * Bricks Custom Fonts registration runs.
 *
 * The variable axes (wght for both, opsz for Inter) let one file serve
 * all weights and sizes. Use font-weight: 400..900 freely in templates.
 */

@font-face {
	font-family: "Inter";
	src: url("../fonts/Inter-Variable.ttf") format("truetype-variations");
	font-weight: 100 900;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Inter";
	src: url("../fonts/Inter-Variable-Italic.ttf") format("truetype-variations");
	font-weight: 100 900;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: "Lora";
	src: url("../fonts/Lora-Variable.ttf") format("truetype-variations");
	font-weight: 400 700;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Lora";
	src: url("../fonts/Lora-Variable-Italic.ttf") format("truetype-variations");
	font-weight: 400 700;
	font-style: italic;
	font-display: swap;
}
