@font-face{ 
	font-family: 'MyWebFont';
	src: url('http://yoursite/wp-content/uploads/WebFont.eot');
	src: url('http://yoursite/wp-content/uploads/WebFont.eot?iefix') format('eot'),
	url('http://yoursite/wp-content/uploads/WebFont.woff') format('woff'),
	url('http://yoursite/wp-content/uploads/WebFont.ttf') format('truetype'),
	url('http://yoursite/wp-content/uploads/WebFont.svg#webfont') format('svg');
}

body, button, input, select, 
textarea, pre, code, kbd, samp, dt, optgroup {
	font-family:'MyWebFont';
}
 
// Just change MyWebFont to your font name.
// If you want to apply custom font to headings too also add this style to custom css
 
h1,h2,h3,h4,h5,h6 {
	font-family:'MyWebFont';
}
