/* Google Sans – sole project typeface (local variable + static fallbacks) */

@font-face {
  font-family: 'Google Sans';
  src: url('../fonts/Google_Sans/GoogleSans-VariableFont_GRAD,opsz,wght.ttf')
    format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Google Sans';
  src: url('../fonts/Google_Sans/GoogleSans-Italic-VariableFont_GRAD,opsz,wght.ttf')
    format('truetype');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Google Sans';
  src: url('../fonts/Google_Sans/static/GoogleSans-Regular.ttf')
    format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

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

@font-face {
  font-family: 'Google Sans';
  src: url('../fonts/Google_Sans/static/GoogleSans-SemiBold.ttf')
    format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Google Sans';
  src: url('../fonts/Google_Sans/static/GoogleSans-Bold.ttf')
    format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --font-primary: 'Google Sans', sans-serif;
  --font-secondary: 'Google Sans', sans-serif;
  --font-bangla: 'Google Sans', sans-serif;
  --font-english: 'Google Sans', sans-serif;
}

html,
body {
  font-family: var(--font-primary) !important;
}

*,
*::before,
*::after {
  font-family: inherit !important;
}

.en-text,
.english-text {
  font-family: var(--font-primary) !important;
}

.bn-text,
.bangla-text {
  font-family: 'Noto Sans Bengali', var(--font-bangla), sans-serif !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a,
button,
input,
select,
textarea,
label,
li,
div {
  font-family: var(--font-primary);
}

input::placeholder,
textarea::placeholder {
  font-family: var(--font-primary);
}

button,
.button,
[type='button'],
[type='reset'],
[type='submit'] {
  font-family: var(--font-primary);
}
