//------------------------------------------------------------------------------------------------
// TYPOGRAPHY
//------------------------------------------------------------------------------------------------

/*
Allows you to append/override $typography values

@include set-typography((
	'alpha': (
		'font-family': $global-header-font,
		'white-space': nowrap,
		'font-size': rem(15px),
		'breakpoints': (
			'sm': rem(20px),
			'md': rem(30px),
			'lg': rem(45px)
		)
	)
));
*/

@mixin set-typography($map) {
	$typography: map-merge($typography, $map) !global;
}