/* Self-hosted Noto Sans. The old site shipped one @font-face family per weight
   ("Noto-SemiBold", …) and pinned font-weight:normal globally; here the weights
   are declared on a single family so Tailwind's font-* utilities drive them. */

@font-face {
	font-family: 'Noto Sans';
	src: url('./noto/NotoSans-Thin.ttf') format('truetype');
	font-weight: 100;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Noto Sans';
	src: url('./noto/NotoSans-Regular.ttf') format('truetype');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Noto Sans';
	src: url('./noto/NotoSans-SemiBold.ttf') format('truetype');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Noto Sans';
	src: url('./noto/NotoSans-Bold.ttf') format('truetype');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Noto Sans';
	src: url('./noto/NotoSans-Black.ttf') format('truetype');
	font-weight: 900;
	font-style: normal;
	font-display: swap;
}
