/* Brand Font */
@font-face{
  font-family: 'Brand Font';
  src: url('https://sepiatravel.tur.ar/storage/47/brand-font.ttf') format('truetype');
  font-style: normal;
  font-weight: normal;
  font-display: swap;
}

/* Variable CSS para reutilizar sin tocar Tailwind config */
:root{
  --brand-font: 'Brand Font', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* Clases simples para aplicar donde quieras */
.brand-font { font-family: var(--brand-font); }

/* Aplicar a títulos dentro del bloque donde pongas esta clase */
.brand-headings h1, .brand-headings h2, .brand-headings h3,
.brand-headings h4, .brand-headings h5, .brand-headings h6 {
  font-family: var(--brand-font);
}

/* Para aplicar en un título puntual */
.brand-title { font-family: var(--brand-font); }

/* Helpers de peso (si tu fuente soporta distintos weights o es variable) */
.brand-300 { font-weight: 300; }
.brand-400 { font-weight: 400; }
.brand-500 { font-weight: 500; }
.brand-600 { font-weight: 600; }
.brand-700 { font-weight: 700; }
.brand-800 { font-weight: 800; }
.brand-900 { font-weight: 900; }