Can I find a $C$, explicitly, for given $A$ and $B$ satifying $$ \sqrt{\pmb{t}^TAA^{T}\pmb{t}} + \sqrt{\pmb{t}^TBB^{T}\pmb{t}} = \sqrt{\pmb{t}^TCC^{T}\pmb{t}}, $$ for all possible choices of $\pmb{t}$.
The idea of taking different choices of $\pmb{t}$ to find an explicit solution of $C$ can be implemented, but I could not find $C$ explicitly in terms of $A$ and $B$ following this idea. Any help will be greatly appreciated.
Note: $A$, $B$, and $C$ are real square matrices and $A^{T}$ indicates the transpose of the matrix $A$. Furthermore $\pmb{t}$ denotes a conformable column-vector.
Let $M = CC^T$. Let $f(\pmb t) = \sqrt{\pmb{t}^TAA^{T}\pmb{t}} + \sqrt{\pmb{t}^TBB^{T}\pmb{t}}$. Our matrix $M$ is a symmetric matrix which meant to satisfy $$ f(\pmb t)^2 = \pmb{t}^T M \pmb{t} $$ for all vectors $\pmb{t}$. Let $e_1,\dots,e_n$ denote the standard basis vectors. We note that $$ e_i^T M e_i = m_{ii},\qquad (e_i + e_j)^TM(e_i + e_j) = m_{ii} + 2m_{ij} + m_{jj} $$ Thus, if some satisfactory $M$ exists, it must satisfy $$ m_{ii} = f(e_i)^2, \qquad m_{ij} = \frac 12 [f(e_i + e_j)^2 - f(e_i)^2 - f(e_j)^2] \quad i \neq j $$
You should find it straight forward to write these expressions of $f$ explicitly in terms of the entries of $A$ and $B$. For instance, $$ m_{ii} = f(e_i)^2 = (|a_{ii}| + |b_{ii}|)^2 $$ the expression for $m_{ij}$ can be computed similarly.
Once you have this candidate $M$, it remains to be seen whether $\pmb{t}^TM \pmb{t} = f(\pmb{t})^2$ generally holds.
From $M$, $C$ can be obtained as the lower triangular matrix from the Cholesky decomposition $M = CC^T$.