I have to prepare a document with the following criteria - 1.5 spacing, text in Times New Roman, Size 12 (with footnotes throughout in Calibri, Size 10). Since I'm using luaLaTeX to get the fonts I'm not sure if the change font of footnote answers apply. In my MWE I am able to get the times font and have the 1.5 line spacing but how can I set the footnote font to size 10 and Calibri?
\documentclass[12pt,a4paper,onecolumn]{article}
\usepackage[margin=1.5in,footskip=0.25in]{geometry}
\usepackage{fontspec}
\usepackage{microtype}
\setmainfont{times}
%\setmainfont{Calibri}
\usepackage{titling}
\setlength{\droptitle}{-2cm}
\usepackage [autostyle=once,english=british]{csquotes}
\usepackage [UKenglish,american,british]{babel}
\usepackage[notes, backend=biber, includeall=false,]{biblatex-chicago}
\usepackage{setspace}
%\doublespacing
\onehalfspacing
\begin{document}
This is test.\footnote{Test footnote.}
\end{document}


\setmainfont{Calibri}to\setsansfont{Calibri}. Admittedly, not a particularly difficult thing to do... – Mico Oct 30 '16 at 08:19LaTeX Font Warning: Font shapeEU2/Calibri(0)/m/it' undefined (Font) usingEU2/Calibri(0)/m/n' instead on input line 40.I think this is effecting my footnotes as there is not italitc text for book titles etc when citing from bib file. While using Linux I do have the calibri files installed. Don't know if these issues are enough to not make as a dup @Johannes_B – gman Oct 31 '16 at 12:19\setsansfont[BoldFont={CalibriBold}, BoldItalic={CalibriBoldItalic}, ItalicFont={CalibriItalic}]{Calibri}from this question Thanks @mico and @johannes_B for the help and comments. I mark this question as dup. – gman Oct 31 '16 at 13:23