/* Define Fonts and Font Classes
	Format:
	
    This defines a new font, and assigns it font-family name, which can be used as a font-family property in a class
	@font-face {
		font-family: {define name A};
		src: url({font location});	
	}
	This defines a new class which can be assigned to html elements to assign the font.
	.{define name B} {
		font-family: { USE A };
	}
*/


@font-face {
  font-family: allura;
  src: url(/css/fonts/allura/Allura-Regular.otf);
}

.allura {
	font-family: allura;	
}

@font-face {
  font-family: arvo_reg;
  src: url(/css/fonts/arvo/Arvo-Regular.ttf);
}

.arvo {
	font-family: arvo_reg;
}

@font-face {
  font-family: arvo_bold;
  src: url(/css/fonts/arvo/Arvo-Bold.ttf);
}

.arvo-bold {
	font-family: arvo_bold;
}

@font-face {
  font-family: arvo_italic;
  src: url(/css/fonts/arvo/Arvo-Italic.ttf);
}

.arvo-italic {
	font-family: arvo_italic;
}

@font-face {
  font-family: arvo_bold_italic;
  src: url(/css/fonts/arvo/Arvo-BoldItalic.ttf);
}

.arvo-bolditalic {
	font-family: arvo_bold_italic;
}

@font-face {
  font-family: milkshake;
  src: url(/css/fonts/Milkshake/Milkshake.otf);
}

.milkshake {
	font-family: milkshake;
}

@font-face {
  font-family: rachella;
  src: url(/css/fonts/Rachella/Rachella.otf);
}

.rachella {
	font-family: rachella;
}

@font-face {
    font-family: 'Lemondrop';
    src:url('/css/fonts/lemondrop/Lemondrop.ttf.woff') format('woff'),
        url('/css/fonts/lemondrop/Lemondrop.ttf.svg#Lemondrop') format('svg'),
        url('/css/fonts/lemondrop/Lemondrop.ttf.eot'),
        url('/css/fonts/lemondrop/Lemondrop.ttf.eot?#iefix') format('embedded-opentype'); 
    font-weight: normal;
    font-style: normal;
}

.lemondrop {
	font-family: Lemondrop;
}