/* Import the Poppins font */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

/* Override Ashby's font and width variables */
:root {
  --fontFamily: "Poppins", sans-serif !important;
  --textColor: #15003b !important;

  /* Updated job board max width */
  --widthMaxJobBoard: 1200px !important;
}

/* Apply font and text color globally */
body,
html,
* {
  font-family: "Poppins", var(--fontFamily), sans-serif !important;
  color: #15003b !important;
}
