/* Fuente Nationale - variantes usadas (400, 400 italic, 500, 600; el "bold" se muestra como DemiBold) */
@font-face {
  font-family: 'Nationale';
  src: url('../fonts/Nationale/Nationale-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Nationale';
  src: url('../fonts/Nationale/Nationale-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Nationale';
  src: url('../fonts/Nationale/Nationale-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Nationale';
  src: url('../fonts/Nationale/Nationale-DemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* Aplicar fuente a todo el sitio */
body {
  font-family: 'Nationale', sans-serif;
}

/* Bold en contenido: usar DemiBold (600) en lugar de Bold (700) */
strong, b, [style*="font-weight: bold"], [style*="font-weight: 700"] {
  font-weight: 600 !important;
}
