/* Make links, active text, and separators share the exact same font */
.language-switcher,
.language-switcher a,
.language-switcher .active-lang,
.language-switcher .lang-sep {
  font-family: "Montserrat","Helvetica Neue",Helvetica,Arial,sans-serif !important;
  font-weight: 700; /* or 400 — use one that your site actually loads */
  line-height: 1;   /* keeps vertical alignment consistent */
  letter-spacing: .5px; /* optional: match theme look */
  text-transform: uppercase;
  color: #fff;
}

/* Links behavior */
.language-switcher a {
  text-decoration: none;
}
.language-switcher a:hover {
  text-decoration: underline;
}

/* Separator looks the same but slightly muted */
.language-switcher .lang-sep {
  opacity: .7;
  margin: 0 4px;
}

/* Ensure list items sit on one line and align */
.language-switcher li {
  display: inline;
  margin: 0;
  vertical-align: middle;
}

