/* Simple TTF Font Declarations */

/* Updated Barmeno Font Family with multiple weights */
@font-face {
  font-family: 'Barmeno';
  src: url('/fonts/Barmeno-Regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

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

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

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

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

/* Global font smoothing */
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* React Native Web specific optimizations - preserve font weights */
div[data-rnw="div"] {
  font-weight: inherit;
}

/* Debug: Force Barmeno bold to work */
[style*="Barmeno"] {
  font-family: 'Barmeno' !important;
}

[style*="font-weight: 700"], [style*="fontWeight:700"] {
  font-weight: 700 !important;
}
