/**
 * Tipografías de marca — archivos en assets/fonts/ (ver DESIGN.md).
 *
 * Gotham: Thin, Light, LightItalic, Book, BookItalic, Medium (`.otf`).
 * Moon titulares: Moon-Bold.ttf. Otros cortes sólo si los añadís y declaráis @font-face aquí.
 *
 * Opcional: convertir OTF/TTF → woff2 para menos peso y ajustar `format` + ruta más abajo.
 */

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

@font-face {
	font-family: Gotham;
	font-style: normal;
	font-weight: 100;
	src: url("fonts/Gotham-Thin.otf") format("opentype");
	font-display: swap;
}

@font-face {
	font-family: Gotham;
	font-style: normal;
	font-weight: 300;
	src: url("fonts/Gotham-Light.otf") format("opentype");
	font-display: swap;
}

@font-face {
	font-family: Gotham;
	font-style: italic;
	font-weight: 300;
	src: url("fonts/Gotham-LightItalic.otf") format("opentype");
	font-display: swap;
}

@font-face {
	font-family: Gotham;
	font-style: normal;
	font-weight: 400;
	src: url("fonts/Gotham-Book.otf") format("opentype");
	font-display: swap;
}

@font-face {
	font-family: Gotham;
	font-style: italic;
	font-weight: 400;
	src: url("fonts/Gotham-BookItalic.otf") format("opentype");
	font-display: swap;
}

@font-face {
	font-family: Gotham;
	font-style: normal;
	font-weight: 500;
	src: url("fonts/Gotham-Medium.otf") format("opentype");
	font-display: swap;
}
