Assuming that any convenient parametrizable sort of correlation suffices, here is a workable model whose details you can flesh out.
A straightforward way to generate correlated standard-normally distributed variables is via a Cholesky decomposition. Various instructions can be found for this online or in CrossValidated. See, for example,
How to use the Cholesky decomposition, or an alternative, for correlated data simulation
Subsequently, these random standard-normal variables could be converted into your Brownian motion and beta-distribution variables. Distance travelled in Brownian motion typically follows a normal distribution with a specific variance, so would just require rescaling one of the standard normal variables (or N, for N-dimensional motion). To convert one standard normally distributed variable to one following a beta distribution, use their CDFs -- i.e., if the standard normal variable is at percentile p, find the corresponding percentile p value for the Beta distribution in question. In R, for example, a standard normal quantity x would be transformed via
qbeta(pnorm(1.2),shape1=1,shape2=2)
This method of parametrizing correlation would not achieve a desired Pearson correlation coefficient, but would (I believe) result in a Spearman correlation equal to the correlation coefficient used in the first (Cholesky decomposition) step.