@use '../utilities/variables';

/// @group Typography
/// @deprecated
/// @example scss
///   @use '@daffodil/design/scss/typography';
///
///   .title {
/// 		@include typography.embolden;
///   }

@mixin embolden() {
	font-weight: variables.$bold-font-weight;
}
