/**
 * fonts.css — Fuente de marca (Poppins) servida desde NUESTRO dominio.
 *
 * Hoja suelta y ligera pensada para las LANDINGS públicas: les da la tipografía
 * corporativa sin arrastrar theme-global.css (que trae todo el tema de la app) y
 * sin depender de fonts.googleapis.com (que envía la IP del visitante a Google).
 *
 * Uso desde el HTML de una landing:
 *   <link rel="stylesheet" href="https://smartalignerservices.com/app/css/fonts.css">
 *   body { font-family: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif; }
 *
 * Los ficheros viven en /fonts (los mismos que usa la app). Aquí solo se declaran
 * woff2 y woff: cubren el 100% de los navegadores vivos; los eot/ttf/svg del tema
 * antiguo eran para IE8/iOS legacy y no tienen sentido en una landing nueva.
 * font-display:swap = el texto se ve desde el primer frame con la fuente de
 * sistema y se sustituye al cargar (nunca un bloque en blanco en una landing).
 */

@font-face {
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url('../fonts/poppins-v15-latin-regular.woff2') format('woff2'),
	     url('../fonts/poppins-v15-latin-regular.woff') format('woff');
}

@font-face {
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 500;
	font-display: swap;
	src: url('../fonts/poppins-v15-latin-500.woff2') format('woff2'),
	     url('../fonts/poppins-v15-latin-500.woff') format('woff');
}

@font-face {
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: url('../fonts/poppins-v15-latin-600.woff2') format('woff2'),
	     url('../fonts/poppins-v15-latin-600.woff') format('woff');
}

@font-face {
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url('../fonts/poppins-v15-latin-700.woff2') format('woff2'),
	     url('../fonts/poppins-v15-latin-700.woff') format('woff');
}
