WPF TextBlock等で利用される規定のFontFamily
設定がない場合SystemFonts.MessageFontFamily
から取得したものを利用する
デフォルト(規定)のTypeFaceを作成するには
var typeface = new Typeface(SystemFonts.MessageFontFamily.Source);
もしくは
var typeface = new Typeface(SystemFonts.MessageFontFamily , FontStyles.Normal, FontWeights.Regular, FontStretches.Normal);