/* Brown Font Family */

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

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

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

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

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

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

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

@font-face {
  font-family: "Brown";
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/Brown-Bold-Italic.otf") format("opentype");
}

/* Aplicar Brown como fonte padrão globalmente */
html,
body {
  font-family: "Brown", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Garantir que todos os elementos herdem a fonte */
* {
  font-family: inherit;
}

/* Classes utilitárias para usar a fonte Brown */
.font-brown {
  font-family: "Brown", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Classes específicas para cada peso */
.brown-thin {
  font-family: "Brown", sans-serif;
  font-weight: 100;
}

.brown-light {
  font-family: "Brown", sans-serif;
  font-weight: 300;
}

.brown-regular {
  font-family: "Brown", sans-serif;
  font-weight: 400;
}

.brown-bold {
  font-family: "Brown", sans-serif;
  font-weight: 700;
}

/* Classes para Tailwind CSS */
.font-family-brown {
  font-family: "Brown", sans-serif;
}
