@include font-include(
	$name: "test",
	$file: "testFont",
	$weight: "300",
	$type: "normal",
	$files: (
		"woff2",
		"woff"
	),
	$path: "testpath/fonts/"
);
$font-primary: (
	font-family: (
		"Graphik",
		serif
	),
	load: true,
	weights: (
		"Light": 100,
		"Regular": 400,
		"Medium": 500,
		"Bold": 600
	),
	path: "~assets/fonts",
	files: (
		"woff2",
		"ttf",
		"eot"
	),
	use: (
		"p",
		"body"
	),
	types: (
		"normal",
		"italic"
	)
);

@include font-load($font-primary);
