/**
 * SN2026 – Self-hosted web fonts
 *
 * All fonts are served locally from /source/fonts/ for performance and
 * privacy (no external font requests at page load).
 *
 * @package SN2026
 */

/* ── Antonio Bold ────────────────────────────────────────────────────── */
@font-face {
	font-family: 'Antonio';
	src: url('../fonts/Antonio-Bold.ttf') format('truetype');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

/* ── Montserrat ExtraBold (local display font) ────────────────────────── */
@font-face {
	font-family: 'Montserrat ExtraBold';
	src: local('Montserrat ExtraBold'), local('Montserrat-ExtraBold');
	font-weight: 800;
	font-style: normal;
	font-display: swap;
}

/* ── Font Awesome 4.x (icon font) ────────────────────────────────────── */
@font-face {
	font-family: 'FontAwesome';
	src: url('../fonts/fontawesome-webfont.ttf') format('truetype'),
	     url('../fonts/fontawesome-webfont.svg#fontawesomeregular') format('svg');
	font-weight: normal;
	font-style: normal;
	font-display: block;
}
