// Fonts are served from public/assets/fonts/poppins/.
// (Do not use assets/desktop/fonts/... — that folder is not shipped; Vite would return
// index.html for missing URLs and the browser would report OTS "invalid sfntVersion".)

@font-face {
	font-family: 'Poppins-Black';
	/* Full Black weight not in repo; Bold is the closest shipped file */
	src: url('assets/fonts/poppins/Poppins-Bold.ttf');
	font-display: swap;
}

@font-face {
	font-family: 'Poppins-Bold';
	src: url('assets/fonts/poppins/Poppins-Bold.ttf');
	font-display: swap;
}

@font-face {
	font-family: 'Poppins-Regular';
	src: url('assets/fonts/poppins/Poppins-Regular.ttf');
	font-display: swap;
}

@font-face {
	font-family: 'Poppins-Italic';
	src: url('assets/fonts/poppins/Poppins-Italic.ttf');
	font-style: italic;
	font-display: swap;
}
