Fonts: Change navigation font-family

To force a font-family change for your navigation, you can use some code to override the standard font:

/* -- code to change navigation font family and font size -- */
.main-menu>li>a { 
	font-family: fantasy !important; 
}
.main-menu-dropdown a { 
	font-family: fantasy !important; 
}
/* - end - */

Replace fantasy with the custom font family you'd like to use. Example:

font-family: "bungee",sans-serif !important;

or

font-family:"Montserrat","Helvetica Neue",Arial,sans-serif !important;

Where do I add the code?

Use this link to learn where exactly to add this code snippet:

Where to add your CSS style code