.brand-title {
  letter-spacing: .14em;
  text-transform: uppercase;
  font-family: League Spartan, sans-serif;
  font-weight: 700;
  font-stretch: 90%;
}

body, button, input, select, textarea {
  font-weight: 400;
}

.mobile-nav {
  display: none;
}

.mobile-nav-bar {
  justify-content: space-between;
  align-items: center;
  gap: .75rem;
  display: flex;
}

.mobile-nav-bar a {
  text-decoration: none;
}

.mobile-menu-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-menu-list li + li {
  margin-top: .75rem;
}

@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }

  .mobile-nav {
    display: block;
  }
}

