/* CAREER AVEMGERS STYLES FOR PAPERFORM */

/*
To use the fonts, you can add one of these to your code:

1. CREATE A CLASS IN THIS CSS FILE, THEN ADD A CLASS NAME TO THE ATTRIBUTE HTML. Best if you need to add multiple styles to one or more attributes
		
	Example in stylesheet:

		.name_of_class
		{
			font-family: 'veneer', sans-serif;
		}
		 OR
		.name_of_class
		{
			font-family: 'depraved', sans-serif;
		}

	Example attribute HTML:
		
		<h1 class="name_of_class">This is a title</h1>

2. USE THE PREDEFINED CLASSES ALREADY IN THIS STYLESHEET. Best if the only styling addiont you need to make to any attribute is the font

	Example in the HTML
	
		<h1 class="veneer">This is a Veneer font title</h1>
		
		OR

		<h1 class="depraved">This is a Depraved font title</h1>

3. USE INLINE STYLES. Best for one-offs or if you cannot access the code more easily

	Example:
		
		<h1 style="font-family: 'veneer', sans-serif;">This is a Veneer title</h1>

		<h1 style="font-family: 'depraved', sans-serif;">This is a Depraved title</h1>

Enjoy!
*/


@font-face {
    font-family: 'depraved';
    src: url('http://careeravengers.com/wp-content/themes/Career%20Avengers/fonts/depraved-webfont.woff2') format('woff2'),
         url('http://careeravengers.com/wp-content/themes/Career%20Avengers/fonts/depraved-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'veneer';
    src: url('http://careeravengers.com/wp-content/themes/Career%20Avengers/fonts/yellow_design_studio_-_veneer-webfont.woff2') format('woff2'),
         url('http://careeravengers.com/wp-content/themes/Career%20Avengers/fonts/yellow_design_studio_-_veneer-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

h1{font-family: 'veneer' !important;
    font-size: 40px !important;
}

.veneer
{
	font-family: 'veneer', sans-serif;
}

.depraved
{
	font-family: 'depraved', sans-serif;